fmt.readRune.buf (field)
8 uses
fmt (current package)
scan.go#L306: buf [utf8.UTFMax]byte // used only inside ReadRune
scan.go#L337: r.buf[0], err = r.readByte()
scan.go#L341: if r.buf[0] < utf8.RuneSelf { // fast check for common ASCII case
scan.go#L342: rr = rune(r.buf[0])
scan.go#L349: for n = 1; !utf8.FullRune(r.buf[:n]); n++ {
scan.go#L350: r.buf[n], err = r.readByte()
scan.go#L359: rr, size = utf8.DecodeRune(r.buf[:n])
scan.go#L361: copy(r.pendBuf[r.pending:], r.buf[size:n])
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |